home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 7_1.lha / 7_1 / makefile < prev    next >
Makefile  |  1993-08-08  |  306b  |  21 lines

  1. C= CC -I. -I../../CC
  2.  
  3. ll: tst1 tst2
  4.  
  5. st1: 7_1.c tst1.c
  6. $(CC) tst1.c -o tst1
  7.  
  8. st2: 7_1.c tst2.c
  9. $(CC) tst2.c -o tst2
  10.  
  11. MP= tst1.cmp tst2.cmp
  12. UT= tst1.out tst2.out
  13.  
  14. st1.out: tst1 ; tst1 > tst1.out
  15. st2.out: tst2 ; tst2 > tst2.out
  16.  
  17. est: $(OUT) $(CMP)
  18. cmp tst1.out tst1.cmp
  19. cmp tst2.out tst2.cmp
  20. @echo test done
  21.